home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / btwalk.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  106 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: btwalk.h
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 02/12/1997 
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The BtreeWalk() function defines a generic iterator used to walk
  32. through Balanced multi-way file-base tree class.
  33.  
  34. Changes:
  35. ================================================================
  36. 10/08/1998: Modified the BtreeWalk() function to test the Btree 
  37. before walking through it. NOTE: A pointer to the Btree must be
  38. suppiled when calling this function.
  39. Changed by: Doug Gaer
  40.  
  41. */
  42. // ----------------------------------------------------------- //   
  43. #ifndef __BTWALK_HPP
  44. #define __BTWALK_HPP
  45.  
  46. #include "btree.h"
  47. #include "ustring.h"
  48. #include "strutil.h"
  49.  
  50. // BtreeVisitFunc is a function pointer used for the visit action.
  51. // The visit action defines a procedure used to process node data.
  52. typedef void (*BtreeVisitFunc)(CachePointer Node); 
  53.  
  54. // This is a recursive function used to walk through the btree.
  55. void BtreeWalk(CachePointer t, BtreeVisitFunc Visit, Btree *tree = 0);
  56.  
  57. // This class is used as a container to store the entry keys in
  58. // memory with as little overhead as possible.
  59. class InMemCopy
  60. {
  61. public:
  62.   InMemCopy() { }
  63.   ~InMemCopy() { }
  64.   InMemCopy(char *k, INT32 oa, INT32 cid);
  65.   InMemCopy(const InMemCopy &ob);
  66.   void operator=(const InMemCopy &ob);
  67.   
  68. public:
  69.   friend int operator==(const InMemCopy &a, const InMemCopy &b) {
  70.     return Compare(a, b) == 0;
  71.   }
  72.   
  73.   friend int operator!=(const InMemCopy &a, const InMemCopy &b) {
  74.     return Compare(a, b) != 0;
  75.   }
  76.   
  77.   friend int operator>(const InMemCopy &a, const InMemCopy &b) {
  78.     return Compare(a, b) > 0;
  79.   }
  80.   
  81.   friend int operator>=(const InMemCopy &a, const InMemCopy &b) {
  82.     return Compare(a, b) >= 0;
  83.   }
  84.   
  85.   friend int operator<(const InMemCopy &a, const InMemCopy &b) {
  86.     return Compare(a, b) < 0;
  87.   }
  88.   
  89.   friend int operator<=(const InMemCopy &a, const InMemCopy &b) {
  90.     return Compare(a, b) <= 0;
  91.   }
  92.   
  93.   friend int Compare(const InMemCopy &a, const InMemCopy &b);
  94.   
  95. public:
  96.   UString key;          // Unique data key 
  97.   INT32 object_address; // Object's address in the database file
  98.   INT32 class_id;       // Class ID number of the object 
  99. };
  100.  
  101. #endif // __BTWALK_HPP
  102. // ----------------------------------------------------------- // 
  103. // ------------------------------- //
  104. // --------- End of File --------- //
  105. // ------------------------------- //
  106.